001    /* $RCSfile: DESede3KeyCipherEngine.java,v $
002     * $Revision: 1.1 $
003     * $Date: 2002/01/02 13:05:22 $
004     * $Author: uwe $
005     * $State: Exp $
006     *
007     * Created on January 2, 2002 1:36 PM
008     *
009     * Copyright (C) 2001 Uwe Guenther <uwe@cscc.de>
010     *
011     * This file is part of the jhbci JCE-ServiceProvider. The jhbci JCE-
012     * ServiceProvider is a library, written in JavaTM, that should be 
013     * used in HBCI banking applications (clients and may be servers),
014     * to do cryptographic operations.
015     *
016     * The jhbci library is free software; you can redistribute it and/or
017     * modify it under the terms of the GNU Lesser General Public
018     * License as published by the Free Software Foundation; either
019     * version 2.1 of the License, or (at your option) any later version.
020     *
021     * The jhbci library is distributed in the hope that it will be useful,
022     * but WITHOUT ANY WARRANTY; without even the implied warranty of
023     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
024     * Lesser General Public License for more details.
025     *
026     * You should have received a copy of the GNU Lesser General Public
027     * License along with this library; if not, write to the Free Software
028     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
029     *
030     */
031    
032    package de.cscc.crypto.provider;
033    
034    /**
035     * This is the concret DESede3Key algorithm class,
036     * it subclasses DESBaseCipherEngine, because in JCE is no
037     * possiblity to set a cipher.
038     */
039    public final class DESede3KeyCipherEngine extends DESBaseCipherEngine {
040        
041        /** Creates a new DESede3KeyCipherEngine object.  */
042        public DESede3KeyCipherEngine() {
043            super(new DESede3KeyCipherImpl());
044        }
045        
046    }
047